home *** CD-ROM | disk | FTP | other *** search
/ Carousel Volume 2 #1 / carousel.iso / mactosh / util / simulare.sit / Simula 4.07 Reference / card_44156.txt < prev    next >
Text File  |  1989-05-02  |  2KB  |  49 lines

  1. -- card: 44156 from stack: in.07 Reference
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 13647
  5. -- name: 
  6.  
  7.  
  8. -- part 1 (button)
  9. -- low flags: 00
  10. -- high flags: A004
  11. -- rect: left=13 top=289 right=311 bottom=97
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 0 / 0
  14. -- text alignment: 1
  15. -- font id: 0
  16. -- text size: 12
  17. -- style flags: 0
  18. -- line height: 16
  19. -- part name: Utilities
  20. ----- HyperTalk script -----
  21. on mouseUp
  22.   go to card id 26098
  23. end mouseUp
  24.  
  25.  
  26.  
  27.  
  28. -- part contents for background part 2
  29. ----- text -----
  30. Random drawing - continued
  31.  
  32. -- part contents for background part 1
  33. ----- text -----
  34. integer procedure POISSON(invWait,U); name U; real invWait; integer U;
  35.      A sample from the Poisson distribution with the waiting time 1/invWait.
  36. real procedure ERLANG(a,b,U); name U; real a,b; integer U;
  37.      A sample from the Erlang distribution with mean 1/a and standard deviation 
  38.      1/(1*Sqrt(b)).
  39. integer procedure DISCRETE(A,U); name U; real array A; integer U;
  40.      A random number K in the range Low..High+1 is returned with probablity
  41.      A(K)-A(K-1)  [Low..High are the bounds of A; A(Low-1)=0, A(High+1)=1]
  42. real procedure LINEAR(A,B,U); name U; real array A,B; integer U;
  43.      A cumulative distribution function F is given by linear interpolation in the non-
  44.      equidistant table defined by A and B, such that A(i)=F(B(i)).  Conditions: A and B 
  45.      must have the same length, A(Low)=0, A(High)=1. A(i+1)>=A(i), B(i+1)>B(i).
  46. integer procedure HISTD(A,U); name U; real array A; integer U;
  47.      A sample from the distribution where A is a histogram defining the relative 
  48.      frequencies of the values.
  49.